-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
110 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2005-04-19 Albert Chu <[email protected]> | ||
|
||
* Autoconf, Makefile, Built cleanup. | ||
|
||
2005-01-25 Albert Chu <[email protected]> | ||
|
||
* src/nodeattr/nodeattr.c (_gend_error_exit): Output info on | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
## | ||
# $Id: autogen.sh,v 1.1 2005-04-19 23:47:27 achu Exp $ | ||
## | ||
|
||
PATH=/bin:/usr/bin:/usr/local/bin | ||
|
||
set -x | ||
aclocal -I config || exit 1 | ||
libtoolize --copy || exit 1 | ||
autoheader || exit 1 | ||
automake --add-missing --copy --gnu || exit 1 | ||
autoconf --warnings=all || exit 1 | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
##***************************************************************************** | ||
## $Id: ac_genders_file.m4,v 1.1 2005-04-19 23:47:27 achu Exp $ | ||
##***************************************************************************** | ||
|
||
AC_DEFUN([AC_GENDERS_FILE], | ||
[ | ||
AC_MSG_CHECKING([for genders default file path]) | ||
AC_ARG_WITH([genders-file], | ||
AC_HELP_STRING([--with-genders-file=PATH], | ||
[define default genders file]), | ||
[ case "$withval" in | ||
no) GENDERS_DEFAULT_FILE="\"/etc/genders\"" ;; | ||
yes) GENDERS_DEFAULT_FILE="\"/etc/genders\"" ;; | ||
*) GENDERS_DEFAULT_FILE="\"$withval\"" | ||
esac | ||
] | ||
) | ||
AC_MSG_RESULT([${GENDERS_DEFAULT_FILE="\"/etc/genders\""}]) | ||
AC_SUBST(GENDERS_DEFAULT_FILE) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
##***************************************************************************** | ||
## $Id: ac_perl_install_destdir.m4,v 1.1 2005-04-19 23:47:27 achu Exp $ | ||
##***************************************************************************** | ||
|
||
# - Used almost exclusively so perl install works with rpm builds | ||
AC_DEFUN([AC_PERL_INSTALL_DESTDIR], | ||
[ | ||
AC_MSG_CHECKING(for --with-perl-install-destdir ) | ||
AC_ARG_WITH(perl-install-destdir, | ||
AC_HELP_STRING([--with-perl-install-destdir=path], | ||
[define perl modules install prefix]), | ||
[ case "$withval" in | ||
yes) | ||
withperllinstalldestdir=yes | ||
;; | ||
no) | ||
;; | ||
*) | ||
withperllinstalldestdir=yes | ||
PERL_INSTALL_DESTDIR="$withval" | ||
;; | ||
esac ] | ||
) | ||
AC_MSG_RESULT(${withperllinstalldestdir=no}) | ||
if test -z "$PERL_INSTALL_DESTDIR"; then | ||
PERL_INSTALL_PREFIX='${prefix}' | ||
else | ||
PERL_INSTALL_PREFIX='${PERL_INSTALL_DESTDIR}${prefix}' | ||
fi | ||
AC_SUBST(PERL_INSTALL_DESTDIR) | ||
AC_SUBST(PERL_INSTALL_PREFIX) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
use ExtUtils::MakeMaker; | ||
# See lib/ExtUtils/MakeMaker.pm for details of how to influence | ||
# the contents of the Makefile that is written. | ||
|
||
WriteMakefile( | ||
'NAME' => 'Genders', | ||
'VERSION_FROM' => 'Genders.pm', # finds $VERSION | ||
'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 | ||
($] >= 5.005 ? ## Add these new keywords supported since 5.005 | ||
(ABSTRACT_FROM => 'Genders.pm', # retrieve abstract from module | ||
AUTHOR => 'A. U. Thor <[email protected]>') : ()), | ||
'LIBS' => [''], # e.g., '-lm' | ||
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' | ||
# Insert -I. if you add *.h files later: | ||
'INC' => '', # e.g., '-I/usr/include/other' | ||
'VERSION_FROM' => 'Genders.pm', | ||
'PREREQ_PM' => {}, | ||
($] >= 5.005 ? | ||
(ABSTRACT_FROM => 'Genders.pm', | ||
AUTHOR => 'Albert Chu <[email protected]>') : ()), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
use ExtUtils::MakeMaker; | ||
# See lib/ExtUtils/MakeMaker.pm for details of how to influence | ||
# the contents of the Makefile that is written. | ||
|
||
WriteMakefile( | ||
'NAME' => 'Libgenders', | ||
'VERSION_FROM' => 'Libgenders.pm', # finds $VERSION | ||
'PREREQ_PM' => {}, # e.g., Module::Name => 1.1 | ||
($] >= 5.005 ? ## Add these new keywords supported since 5.005 | ||
(ABSTRACT_FROM => 'Libgenders.pm', # retrieve abstract from module | ||
'VERSION_FROM' => 'Libgenders.pm', | ||
'PREREQ_PM' => {}, | ||
($] >= 5.005 ? | ||
(ABSTRACT_FROM => 'Libgenders.pm', | ||
AUTHOR => 'Albert Chu <[email protected]>') : ()), | ||
'LIBS' => [''], # e.g., '-lm' | ||
'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' | ||
# Insert -I. if you add *.h files later: | ||
'INC' => '', # e.g., '-I/usr/include/other' | ||
# Un-comment this if you add C files to link with later: | ||
'OBJECT' => '$(O_FILES)', # link all the C files too | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters