summaryrefslogtreecommitdiffstats
path: root/llvm/autoconf
Commit message (Collapse)AuthorAgeFilesLines
...
* Cache the value of this test.Reid Spencer2004-11-252-16/+14
| | | | llvm-svn: 18231
* Tidy up the indentation. Give the cache variable a proper name.Reid Spencer2004-11-251-19/+20
| | | | llvm-svn: 18230
* Eliminate duplicate "checking" message.Reid Spencer2004-11-251-1/+1
| | | | llvm-svn: 18229
* Make the check print something, give the cache var an llvm specific name.Reid Spencer2004-11-251-2/+1
| | | | llvm-svn: 18224
* Add the configurable configuration files for llvmc.Reid Spencer2004-11-231-1/+2
| | | | llvm-svn: 18190
* Changes for testing presence of ltdl.h and lt_dlopen(), libtool functionsReid Spencer2004-11-181-9/+19
| | | | | | for cross-platform dynamic loading of shared objects. llvm-svn: 17950
* Add the RUNTEST autoconf onfiguration variable for Deja-gnu support. ThisReid Spencer2004-11-071-4/+6
| | | | | | | tool runs Deja-gnu test suites. The 'make' variable RUNTEST is now set automatically in the Makefile.config file. llvm-svn: 17599
* Added the poolalloc module to the list of projects to configure, if present.John Criswell2004-10-281-0/+1
| | | | llvm-svn: 17319
* Make sure we test the right variable for the AC_DEFINEReid Spencer2004-10-281-1/+1
| | | | llvm-svn: 17302
* It's spelled IEEEFPBrian Gaeke2004-10-281-1/+1
| | | | llvm-svn: 17301
* Changes to support rand48 testsReid Spencer2004-10-276-34/+64
| | | | llvm-svn: 17284
* Really get mkinstalldirs to shut up about what its doing .. who cares?Reid Spencer2004-10-261-3/+3
| | | | llvm-svn: 17242
* Teach mkinstalldirs how to shut up about making directories.Reid Spencer2004-10-251-1/+1
| | | | llvm-svn: 17209
* Add a check for the tar program.Reid Spencer2004-10-251-0/+1
| | | | llvm-svn: 17208
* Remove automake support.Reid Spencer2004-10-221-18/+0
| | | | llvm-svn: 17156
* We won't use automakeReid Spencer2004-10-221-633/+0
| | | | llvm-svn: 17155
* Add runtime directoriesReid Spencer2004-10-171-1/+23
| | | | llvm-svn: 17086
* Transfer Makefile.JIT into the build tree for JIT-enabling tools and examplesMisha Brukman2004-10-141-0/+1
| | | | llvm-svn: 16990
* Set up BUILD_MODE based on the configuration so the default build modeReid Spencer2004-10-131-4/+11
| | | | | | | is established from configuration. Also, don't make the ENABLE_ options AM_CONDITIONALs. llvm-svn: 16952
* Save Reid's notes from bugzilla on the proper procedure to upgrade libtoolMisha Brukman2004-10-131-0/+12
| | | | llvm-svn: 16947
* Changes for libtool 1.5.10Reid Spencer2004-10-131-63/+64
| | | | llvm-svn: 16945
* Update for libtool 1.5.10Reid Spencer2004-10-131-480/+592
| | | | llvm-svn: 16944
* Harden the version requirements to the set that actually works after threeReid Spencer2004-10-131-3/+3
| | | | | | | | days of trying to figure it out. Despite some developer's penchant for relaxing the tool versions, this just isn't possible. Only certain versions work with certain other versions. llvm-svn: 16943
* Directory changesReid Spencer2004-10-101-1/+2
| | | | llvm-svn: 16891
* Ensure timestamp on saved contents of configure.ac is not changed.Reid Spencer2004-10-106-567/+1684
| | | | | | Use correct options to automake. llvm-svn: 16879
* Add the --with-automake option to AutoRegen.sh and provide the automakeReid Spencer2004-10-082-10/+519
| | | | | | | | | | version of the configure script. This is an early commit of the automake support so that automake support can be tested on multiple platforms. Many additional Makefile.am need to be added to LLVM before this is of any use. Please wait until automake support is announced on llvmdev list before using the --with-automake option. llvm-svn: 16837
* Add checks for the ZLIB and BZIP2 header files, not just the libraries.Reid Spencer2004-10-041-4/+10
| | | | llvm-svn: 16669
* Move the warning about no compression library down to the bottom, awayReid Spencer2004-10-041-7/+9
| | | | | | | | from the fray, so it gets noticed. This commit is made without the corresponding configure script commit because it doesn't affect functionality and we don't want to force everyone into another reconfigure llvm-svn: 16657
* Provide support for auto-detection and use of compression libraries.Reid Spencer2004-10-041-0/+2
| | | | llvm-svn: 16643
* Add checks for bzip2 and libz for use with the Compression concept forReid Spencer2004-10-021-0/+16
| | | | | | lib/System and the compressing llvm archiver. llvm-svn: 16634
* Improve warningAlkis Evlogimenos2004-09-271-1/+1
| | | | llvm-svn: 16520
* Updated the last two header files so that they are configured withJohn Criswell2004-09-244-14/+17
| | | | | | | AC_CONFIG_HEADERS. This should prevent LLVM from needlessly re-compiling on a re-configure. llvm-svn: 16510
* Modified hash_map and hash_set configuration so that they are notJohn Criswell2004-09-243-20/+26
| | | | | | regenerated on every run of configure. llvm-svn: 16509
* Configure Datatypes.h.in with AC_CONFIG_HEADERS. This should prevent itJohn Criswell2004-09-241-14/+4
| | | | | | | from being re-generated if the new version is identical to the old version. Hence, it should save us some recompiling after re-configures. llvm-svn: 16506
* Change the warning text so that NO warnings are permitted. This is now theReid Spencer2004-09-211-4/+4
| | | | | | case since the AC_CONFIG_SUBDIRS problem has been fixed. llvm-svn: 16464
* Don't attempt to (illegally) configure a subdir if we don't recognize it.Reid Spencer2004-09-211-1/+3
| | | | | | | | Instead just create a warning message that says the directory cannot be configured because it isn't recognized. This also gets rid of a bunch of warning messages from the auto* tools. llvm-svn: 16463
* Fix the program passed to AC_LANG_PROGRAM to be only the BODY of the mainReid Spencer2004-09-211-3/+2
| | | | | | | | | function, not the whole main function. This problem resulted during conversion of scripts to the new autoconf standard. The effect was that the mmap_file test would fail and if it does there is currently an #ifdef'd #error that causes compilation to fail. Bad, bad, bad. llvm-svn: 16462
* Use the right directory for the Java frontendAlkis Evlogimenos2004-09-201-1/+1
| | | | llvm-svn: 16448
* Correct the use AC_RUN_IFELSE to ensure it builds programs correctly byReid Spencer2004-09-202-14/+8
| | | | | | using the AC_LANG_PROGRAM macro. llvm-svn: 16426
* The problem with depending on the internal implementation of third partyReid Spencer2004-09-201-1/+1
| | | | | | tools is that you break when they change. This is a case in point. llvm-svn: 16424
* Update the script to generate mklib instead of libtool.Reid Spencer2004-09-201-1/+1
| | | | llvm-svn: 16421
* Various minor cleanups and replacement of obsoleted macro names.Reid Spencer2004-09-191-14/+13
| | | | llvm-svn: 16419
* Numerous fixes to convert ~ into ; that (probably) occurred during dataReid Spencer2004-09-191-61/+45
| | | | | | transmission. llvm-svn: 16418
* Bring the script out of the dark ages and into modern autoconfness.Reid Spencer2004-09-1912-124/+115
| | | | llvm-svn: 16415
* Make the "Warning" notice a LOT more prominent.Reid Spencer2004-09-191-1/+10
| | | | llvm-svn: 16414
* Add in version dependency checks on all the tools we depend on. This isReid Spencer2004-09-191-6/+17
| | | | | | | | | necessary to ensure that a consistent configuration is created on each platform. Certain definitions we use (like m4/libtool.m4) require certain versions of the tools and we can no longer be slack about this or we'll have problems with mis-configured builds. llvm-svn: 16412
* Add our own version of libtool.m4 instead of relying on the installed one.Reid Spencer2004-09-191-0/+6010
| | | | | | | | | | | | This is a potential version mismatch problem because this file came from libtool 1.5.10. If you're running a different version of libtool, the checks in this file may not be quite right. Having our own version of this file violates the spirit of libtool and is only provided to change the name of "libtool" to "mklib". This is done so that the name "libtool" does not conflict with the "lib" directory when doing tab completion and your $objdir == $srcdir. llvm-svn: 16411
* Update to latest versions of config.guess and config.sub fromBrian Gaeke2004-09-102-69/+194
| | | | | | http://savannah.gnu.org/projects/config llvm-svn: 16268
* recognize MinGWBrian Gaeke2004-09-081-0/+4
| | | | llvm-svn: 16254
* PAPI check has been moved to projects/reopt.Brian Gaeke2004-09-071-3/+0
| | | | llvm-svn: 16237
OpenPOWER on IntegriCloud