diff options
author | Michele Calgaro <[email protected]> | 2019-05-13 14:51:06 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-10-05 21:41:29 +0900 |
commit | 000a818a2cc613690ee5ed4d47685722fff39e83 (patch) | |
tree | 721334d7f366a03ece1d77e18cd05b779c69298c /configure.in | |
parent | fb5d1ca135c6daa5dbbc5ff2e9ca6eb31bd2da28 (diff) | |
download | libart-lgpl-000a818a2cc613690ee5ed4d47685722fff39e83.tar.gz libart-lgpl-000a818a2cc613690ee5ed4d47685722fff39e83.zip |
Removed unused files and changed file names to conform to .cmake convention for configuration files.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit df378ddc984750f135569c9ce292699d2e2120d6)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/configure.in b/configure.in deleted file mode 100644 index d7aeaf9..0000000 --- a/configure.in +++ /dev/null @@ -1,137 +0,0 @@ -m4_define([libart_major_version], [2]) -m4_define([libart_minor_version], [3]) -m4_define([libart_micro_version], [21]) -m4_define([libart_version], - [libart_major_version.libart_minor_version.libart_micro_version]) - -AC_INIT([libart-lgpl],[libart_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libart],[libart_lgpl]) - -AC_CONFIG_HEADERS([config.h]) - -LIBART_MAJOR_VERSION=libart_major_version -LIBART_MINOR_VERSION=libart_minor_version -LIBART_MICRO_VERSION=libart_micro_version -LIBART_VERSION=libart_version - -LIBART_VERSION_INFO=`expr $LIBART_MAJOR_VERSION + $LIBART_MINOR_VERSION`:$LIBART_MICRO_VERSION:$LIBART_MINOR_VERSION - -AC_SUBST(LIBART_MAJOR_VERSION) -AC_SUBST(LIBART_MINOR_VERSION) -AC_SUBST(LIBART_MICRO_VERSION) -AC_SUBST(LIBART_VERSION) -AC_SUBST(LIBART_VERSION_INFO) - -AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) - -AC_ARG_ENABLE(ansi, [ --enable-ansi turn on strict ansi [default=no]], - , enable_ansi=no) - -AC_PROG_CC -AC_PROG_CPP -AC_LIBTOOL_WIN32_DLL -AM_PROG_LIBTOOL - -AM_MAINTAINER_MODE - -AC_MSG_CHECKING([for some Win32 platform]) -case "$host" in - *-*-mingw*|*-*-cygwin*) - platform_win32=yes - ;; - *) - platform_win32=no - ;; -esac -AC_MSG_RESULT([$platform_win32]) -AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") - -AC_MSG_CHECKING([for native Win32]) -case "$host" in - *-*-mingw*) - os_win32=yes - ;; - *) - os_win32=no - ;; -esac -AC_MSG_RESULT([$os_win32]) -AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes") - -if test "$os_win32" = "yes"; then - AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) -fi -AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) - -changequote(,)dnl -if test "x$GCC" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-Wall[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wall" ;; - esac - - case " $CFLAGS " in - *[\ \ ]-Wmissing-prototypes[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -Wmissing-prototypes" ;; - esac - - if test "x$enable_ansi" = "xyes"; then - case " $CFLAGS " in - *[\ \ ]-ansi[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -ansi" ;; - esac - - case " $CFLAGS " in - *[\ \ ]-pedantic[\ \ ]*) ;; - *) CFLAGS="$CFLAGS -pedantic" ;; - esac - fi -fi -changequote([,])dnl - -AC_FUNC_ALLOCA - -AC_C_BIGENDIAN - -AC_CHECK_SIZEOF(char) -AC_SUBST(ART_SIZEOF_CHAR, $ac_cv_sizeof_char) -AC_CHECK_SIZEOF(short) -AC_SUBST(ART_SIZEOF_SHORT, $ac_cv_sizeof_short) -AC_CHECK_SIZEOF(int) -AC_SUBST(ART_SIZEOF_INT, $ac_cv_sizeof_int) -AC_CHECK_SIZEOF(long) -AC_SUBST(ART_SIZEOF_LONG, $ac_cv_sizeof_long) - -if test $ART_SIZEOF_CHAR -eq 1; then - AC_SUBST( ART_U8_TYPE, "unsigned char" ) -else - echo 1>&2 "sizeof(char) != 1" - exit 1 -fi - -if test $ART_SIZEOF_SHORT -eq 2; then - AC_SUBST( ART_U16_TYPE, "unsigned short" ) -else - echo 1>&2 "sizeof(short) != 2" - exit 2 -fi - -if test $ART_SIZEOF_INT -eq 4; then - AC_SUBST( ART_U32_TYPE, "unsigned int" ) -else - if test $ART_SIZEOF_LONG -eq 4; then - AC_SUBST( ART_U32_TYPE, "unsigned long" ) - else - echo 1>&2 "sizeof(int) != 4 and sizeof(long) != 4" - exit 3 - fi -fi - -AC_CONFIG_FILES([ -art_config.h -libart-features.h -Makefile -libart-2.0.pc -libart-2.0-uninstalled.pc -libart-zip]) - -AC_OUTPUT |