summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-12-09 14:56:41 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-12-09 14:56:41 (GMT)
commit183f36fe97cb95636f1947c2c4be61f7b78f87e0 (patch)
treeacb6fb0906e9069097ffd09aa21356b2dc52833b /src
parent12b28cf18d559d8b1010c8c712ea5557afdc1481 (diff)
downloadDoxygen-183f36fe97cb95636f1947c2c4be61f7b78f87e0.zip
Doxygen-183f36fe97cb95636f1947c2c4be61f7b78f87e0.tar.gz
Doxygen-183f36fe97cb95636f1947c2c4be61f7b78f87e0.tar.bz2
Remove obsolete py files
Diffstat (limited to 'src')
-rwxr-xr-xsrc/increasebuffer.py7
-rwxr-xr-xsrc/settings.py29
-rwxr-xr-xsrc/version.py61
3 files changed, 0 insertions, 97 deletions
diff --git a/src/increasebuffer.py b/src/increasebuffer.py
deleted file mode 100755
index e2b2d0c..0000000
--- a/src/increasebuffer.py
+++ /dev/null
@@ -1,7 +0,0 @@
-# Since the internal token buffer of a generated flex file is hardcoded
-# to 16K, this script is used to increase the buffer size of a flex
-# generated scanner to 256K.
-import sys
-sys.stdout.write(sys.stdin.read().
- replace('YY_BUF_SIZE 16384','YY_BUF_SIZE 262144').
- replace('YY_READ_BUF_SIZE 8192','YY_READ_BUF_SIZE 262144'))
diff --git a/src/settings.py b/src/settings.py
deleted file mode 100755
index a9dfa13..0000000
--- a/src/settings.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-
-import sys
-import os
-
-f_sqlite3 = sys.argv[1]
-f_libclang = sys.argv[2]
-
-f1 = open(os.path.join(sys.argv[3],'settings.h'),'w')
-f1.write("#ifndef SETTINGS_H\n")
-f1.write("#define SETTINGS_H\n")
-f1.write("\n")
-if (f_sqlite3 != "NO"):
- f1.write("#define USE_SQLITE3 1\n")
-else:
- f1.write("#define USE_SQLITE3 0\n")
-
-if (f_libclang != "NO"):
- f1.write("#define USE_LIBCLANG 1\n")
-else:
- f1.write("#define USE_LIBCLANG 0\n")
-
-f1.write("\n")
-f1.write("#define IS_SUPPORTED(x) \\\n")
-f1.write(" ((USE_SQLITE3 && strcmp(\"USE_SQLITE3\",(x))==0) || \\\n")
-f1.write(" (USE_LIBCLANG && strcmp(\"USE_LIBCLANG\",(x))==0) || \\\n")
-f1.write(" 0)\n")
-f1.write("\n")
-f1.write("#endif\n")
diff --git a/src/version.py b/src/version.py
deleted file mode 100755
index a99ede3..0000000
--- a/src/version.py
+++ /dev/null
@@ -1,61 +0,0 @@
-#
-
-# script to read the version information from `../configure`
-# relevant lines are starting with:
-# `doxygen_version_major`
-# `doxygen_version_minor`
-# `doxygen_version_revision`
-# `doxygen_version_mmn`
-# the collected information is written to: `../VERSION` and `../src/version.cpp`
-#
-import sys
-import os
-#
-# set 'default' values
-#
-major = 0
-minor = 0
-revision = 0
-mnt = 'NO'
-configure = '../configure'
-if len(sys.argv) > 2:
- configure = sys.argv[2]
-#
-# open input file
-# read file and get relevant information
-# close
-#
-f = open(configure, 'r')
-for line in f:
- # check if line can match (saves 3 comparisons)
- if (line.startswith('doxygen_version')):
- if (line.startswith('doxygen_version_major')):
- major = line.replace('doxygen_version_major=','')
- elif (line.startswith('doxygen_version_minor')):
- minor = line.replace('doxygen_version_minor=','')
- elif (line.startswith('doxygen_version_revision')):
- revision = line.replace('doxygen_version_revision=','')
- elif (line.startswith('doxygen_version_mmn')):
- mnt = line.replace('doxygen_version_mmn=','')
-f.close()
-
-# strip superfluous '\n`
-major = major.replace('\n','')
-minor = minor.replace('\n','')
-revision = revision.replace('\n','')
-mnt = mnt.replace('\n','')
-#
-# open output files
-# write relevant infomation
-# close files
-#
-f1 = open('../VERSION','w')
-f2 = open(os.path.join(sys.argv[1],'version.cpp'),'w')
-if (mnt == 'NO'):
- f1.write(major + '.' + minor + '.' + revision)
- f2.write('char versionString[]="' + major + '.' + minor + '.' + revision + '";')
-else:
- f1.write(major + '.' + minor + '.' + revision + '-' + mnt)
- f2.write('char versionString[]="' + major + '.' + minor + '.' + revision + '-' + mnt + '";')
-f1.close()
-f2.close()