Check-in Number:
|
220 | |
Date: |
2000-Dec-13 16:09:16 (local)
2000-Dec-13 15:09:16 (UTC) |
User: | simons |
Branch: | |
Comment: |
- Libraries do not need Autoconf anymore, thus I removed the
AC_CONFIG_SUBDIRS call.
- Added -O3 to CFLAGS for the sake of good optimization. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/.cvsignore -> 1.1
*** /dev/null Sat Nov 23 01:40:13 2024
--- - Sat Nov 23 01:40:16 2024
***************
*** 0 ****
--- 1,3 ----
+ configure config.log config.cache config.status Makefile
+ acl.c acl_scan.c acl_scan.h
+ petidomo
|
|
ossp-pkg/petidomo/configure.in 1.2 -> 1.3
--- configure.in 2000/12/13 16:42:17 1.2
+++ configure.in 2000/12/14 15:09:16 1.3
@@ -1,12 +1,12 @@
dnl
dnl configure.in -- Process this file with autoconf to produce a configure script.
dnl
-dnl $Header: /v/ossp/cvs/ossp-pkg/petidomo/configure.in,v 1.2 2000/12/13 16:42:17 simons Exp $
+dnl $Header: /v/ossp/cvs/ossp-pkg/petidomo/configure.in,v 1.3 2000/12/14 15:09:16 simons Exp $
dnl
AC_INIT(main.c)
AC_CONFIG_AUX_DIR(../etc)
-AC_REVISION($Revision: 1.2 $)dnl
+AC_REVISION($Revision: 1.3 $)dnl
dnl Checks for paths and programs.
dnl
@@ -35,15 +35,9 @@
dnl
CFLAGS=`echo $CFLAGS | sed -e "s/-g//"`
-
-dnl Run the sub-system configures.
+dnl Turn '-O2' to '-O3'.
dnl
-AC_CONFIG_SUBDIRS(libargv)
-AC_CONFIG_SUBDIRS(libconfigfile)
-AC_CONFIG_SUBDIRS(libdebug)
-AC_CONFIG_SUBDIRS(liblists)
-AC_CONFIG_SUBDIRS(librfc822)
-AC_CONFIG_SUBDIRS(libtext)
+CFLAGS=`echo $CFLAGS | sed -e "s/-O2/-O3/"`
dnl Write results.
dnl
|
|