diff options
54 files changed, 306 insertions, 306 deletions
diff --git a/m4/ax_auto_include_headers.m4 b/m4/ax_auto_include_headers.m4 index 4ef2430..674e033 100644 --- a/m4/ax_auto_include_headers.m4 +++ b/m4/ax_auto_include_headers.m4 @@ -13,22 +13,22 @@ # example demonstrates how AX_AUTO_INCLUDE_HEADERS's might be used in a # configure.ac script: # -# AH_BOTTOM([ -# AX_AUTO_INCLUDE_HEADERS([sys/resource.h invent.h sys/sysinfo.h])dnl -# ]) +# AH_BOTTOM([ +# AX_AUTO_INCLUDE_HEADERS([sys/resource.h invent.h sys/sysinfo.h])dnl +# ]) # # The preceding invocation instructs autoheader to put the following code # at the bottom of the config.h file: # -# #ifdef HAVE_SYS_RESOURCE_H -# # include <sys/resource.h> -# #endif -# #ifdef HAVE_INVENT_H -# # include <invent.h> -# #endif -# #ifdef HAVE_SYS_SYSINFO_H -# # include <sys/sysinfo.h> -# #endif +# #ifdef HAVE_SYS_RESOURCE_H +# # include <sys/resource.h> +# #endif +# #ifdef HAVE_INVENT_H +# # include <invent.h> +# #endif +# #ifdef HAVE_SYS_SYSINFO_H +# # include <sys/sysinfo.h> +# #endif # # Note that AX_AUTO_INCLUDE_HEADERS merely outputs #ifdef/#include/#endif # blocks. The configure.ac script still needs to invoke AC_CHECK_HEADERS @@ -37,7 +37,7 @@ # Here's an easy way to get from config.h a complete list of header files # who existence is tested by the configure script: # -# cat config.h | perl -ane '/ HAVE_\S+_H / && do {$_=$F[$#F-1]; s/^HAVE_//; s/_H/.h/; s|_|/|g; tr/A-Z/a-z/; print "$_ "}' +# cat config.h | perl -ane '/ HAVE_\S+_H / && do {$_=$F[$#F-1]; s/^HAVE_//; s/_H/.h/; s|_|/|g; tr/A-Z/a-z/; print "$_ "}' # # You can then manually edit the resulting list and incorporate it into # one or more calls to AX_AUTO_INCLUDE_HEADERS. diff --git a/m4/ax_berkeley_db.m4 b/m4/ax_berkeley_db.m4 index 977f51b..acd213d 100644 --- a/m4/ax_berkeley_db.m4 +++ b/m4/ax_berkeley_db.m4 @@ -16,7 +16,7 @@ # location of db.h header in quotes (e.g. "db3/db.h") and # AC_DEFINE_UNQUOTED is called on it, so that you can type # -# #include DB_HEADER +# #include DB_HEADER # # in your C/C++ code. DB_LIBS is set to linker flags needed to link # against the library (e.g. -ldb3.1) and AC_SUBST is called on it. diff --git a/m4/ax_blas.m4 b/m4/ax_blas.m4 index ce33a8a..96f2c15 100644 --- a/m4/ax_blas.m4 +++ b/m4/ax_blas.m4 @@ -14,7 +14,7 @@ # # To link with BLAS, you should link with: # -# $BLAS_LIBS $LIBS $FLIBS +# $BLAS_LIBS $LIBS $FLIBS # # in that order. FLIBS is the output variable of the # AC_F77_LIBRARY_LDFLAGS macro (called if necessary by AX_BLAS), and is diff --git a/m4/ax_c_var_func.m4 b/m4/ax_c_var_func.m4 index 5fd18f4..e449638 100644 --- a/m4/ax_c_var_func.m4 +++ b/m4/ax_c_var_func.m4 @@ -15,7 +15,7 @@ # __func__ shall be implictly declared by the compiler as if, immediately # following the opening brace of each function definition, the declaration # -# static const char __func__[] = "function-name"; +# static const char __func__[] = "function-name"; # # appeared, where function-name is the name of the function where the # __func__ identifier is used. diff --git a/m4/ax_check_gnu_make.m4 b/m4/ax_check_gnu_make.m4 index c20db79..5ec3b17 100644 --- a/m4/ax_check_gnu_make.m4 +++ b/m4/ax_check_gnu_make.m4 @@ -19,28 +19,28 @@ # # Makefile.in might contain: # -# # A failsafe way of putting a dependency rule into a makefile -# $(DEPEND): -# $(CC) -MM $(srcdir)/*.c > $(DEPEND) +# # A failsafe way of putting a dependency rule into a makefile +# $(DEPEND): +# $(CC) -MM $(srcdir)/*.c > $(DEPEND) # -# @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND))) -# @ifGNUmake@ include $(DEPEND) -# @ifGNUmake@ endif +# @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND))) +# @ifGNUmake@ include $(DEPEND) +# @ifGNUmake@ endif # # Then configure.in would normally contain: # -# AX_CHECK_GNU_MAKE() -# AC_OUTPUT(Makefile) +# AX_CHECK_GNU_MAKE() +# AC_OUTPUT(Makefile) # # Then perhaps to cause gnu make to override any other make, we could do # something like this (note that GNU make always looks for GNUmakefile # first): # -# if ! test x$_cv_gnu_make_command = x ; then -# mv Makefile GNUmakefile -# echo .DEFAULT: > Makefile ; -# echo \ $_cv_gnu_make_command \$@ >> Makefile; -# fi +# if ! test x$_cv_gnu_make_command = x ; then +# mv Makefile GNUmakefile +# echo .DEFAULT: > Makefile ; +# echo \ $_cv_gnu_make_command \$@ >> Makefile; +# fi # # Then, if any (well almost any) other make is called, and GNU make also # exists, then the other make wraps the GNU make. diff --git a/m4/ax_check_mysql_db.m4 b/m4/ax_check_mysql_db.m4 index dc843cb..b5ffbb7 100644 --- a/m4/ax_check_mysql_db.m4 +++ b/m4/ax_check_mysql_db.m4 @@ -14,12 +14,12 @@ # # Example: # -# AX_CHECK_MYSQL_DB(DBNAME, [fishmarket]) -# if test x$DBNAME = xfishmarket; then -# bla..bla..bla.. -# else -# bla..bla..bla.. -# fi +# AX_CHECK_MYSQL_DB(DBNAME, [fishmarket]) +# if test x$DBNAME = xfishmarket; then +# bla..bla..bla.. +# else +# bla..bla..bla.. +# fi # # LICENSE # diff --git a/m4/ax_check_pgsql_db.m4 b/m4/ax_check_pgsql_db.m4 index 0a4df25..30e0873 100644 --- a/m4/ax_check_pgsql_db.m4 +++ b/m4/ax_check_pgsql_db.m4 @@ -13,35 +13,35 @@ # variable $pgclient_call is set for later use in Makefiles, if you'd like # to make use of this, you must do # -# AC_SUBST(pgclient_call) +# AC_SUBST(pgclient_call) # # after having called AX_CHECK_PGSQL_DB. You can then do something like # the following in your Makefile.am: # -# @pgclient_call@ -f file.sql +# @pgclient_call@ -f file.sql # # If you want the user to set the data, you should support something like # these configure options: # -# AC_ARG_WITH(pgsql-host, -# [ --with-pgsql-host=HOST server is running on HOST @<:@local socket@:>@], -# [pg_host=$withval], [pg_host=]) +# AC_ARG_WITH(pgsql-host, +# [ --with-pgsql-host=HOST server is running on HOST @<:@local socket@:>@], +# [pg_host=$withval], [pg_host=]) # -# AC_ARG_WITH(pgsql-db, -# [ --with-pgsql-db=DATABASE use DATABASE @<:@tarantoola@:>@], -# [pg_db=$withval], [pg_db=tarantoola]) +# AC_ARG_WITH(pgsql-db, +# [ --with-pgsql-db=DATABASE use DATABASE @<:@tarantoola@:>@], +# [pg_db=$withval], [pg_db=tarantoola]) # -# AC_ARG_WITH(pgsql-user, -# [ --with-pgsql-user=USER use USER @<:@postgres@:>@], -# [pg_user=$withval], [pg_user=postgres]) +# AC_ARG_WITH(pgsql-user, +# [ --with-pgsql-user=USER use USER @<:@postgres@:>@], +# [pg_user=$withval], [pg_user=postgres]) # -# AC_ARG_WITH(pgsql-password, -# [ --with-pgsql-password=PASSWORD use PASSWORD @<:@none@:>@], -# [pg_password=$withval], [pg_password=""]) +# AC_ARG_WITH(pgsql-password, +# [ --with-pgsql-password=PASSWORD use PASSWORD @<:@none@:>@], +# [pg_password=$withval], [pg_password=""]) # # You can then call the macro like this: # -# AX_CHECK_PGSQL_DB([$pg_db], [$pg_user], [$pg_host], [$pg_password], [AC_MSG_ERROR([We need a database connection!])]) +# AX_CHECK_PGSQL_DB([$pg_db], [$pg_user], [$pg_host], [$pg_password], [AC_MSG_ERROR([We need a database connection!])]) # # LICENSE # diff --git a/m4/ax_check_user.m4 b/m4/ax_check_user.m4 index d4eed07..bad6e96 100644 --- a/m4/ax_check_user.m4 +++ b/m4/ax_check_user.m4 @@ -13,17 +13,17 @@ # # Example: # -# AX_CHECK_USER(USER, [gleensalmon]) -# if test x$USER = xgleensalmon; then -# bla..bla..bla.. -# else -# bla..bla..bla.. -# fi +# AX_CHECK_USER(USER, [gleensalmon]) +# if test x$USER = xgleensalmon; then +# bla..bla..bla.. +# else +# bla..bla..bla.. +# fi # # Besides checking existence, this macro also set these environment # variables upon completion: # -# USER_HOME = home directory of user, written in /etc/passwd +# USER_HOME = home directory of user, written in /etc/passwd # # LICENSE # diff --git a/m4/ax_compile_check_sizeof.m4 b/m4/ax_compile_check_sizeof.m4 index 8961076..1380199 100644 --- a/m4/ax_compile_check_sizeof.m4 +++ b/m4/ax_compile_check_sizeof.m4 @@ -18,11 +18,11 @@ # The trick is that C will not allow duplicate case labels. While this is # valid C code: # -# switch (0) case 0: case 1:; +# switch (0) case 0: case 1:; # # The following is not: # -# switch (0) case 0: case 0:; +# switch (0) case 0: case 0:; # # Thus, the AC_TRY_COMPILE will fail if the currently tried size does not # match. @@ -30,29 +30,29 @@ # Here is an example skeleton configure.in script, demonstrating the # macro's usage: # -# AC_PROG_CC -# AC_CHECK_HEADERS(stddef.h unistd.h) -# AC_TYPE_SIZE_T -# AC_CHECK_TYPE(ssize_t, int) -# -# headers='#ifdef HAVE_STDDEF_H -# #include <stddef.h> -# #endif -# #ifdef HAVE_UNISTD_H -# #include <unistd.h> -# #endif -# ' -# -# AX_COMPILE_CHECK_SIZEOF(char) -# AX_COMPILE_CHECK_SIZEOF(short) -# AX_COMPILE_CHECK_SIZEOF(int) -# AX_COMPILE_CHECK_SIZEOF(long) -# AX_COMPILE_CHECK_SIZEOF(unsigned char *) -# AX_COMPILE_CHECK_SIZEOF(void *) -# AX_COMPILE_CHECK_SIZEOF(size_t, $headers) -# AX_COMPILE_CHECK_SIZEOF(ssize_t, $headers) -# AX_COMPILE_CHECK_SIZEOF(ptrdiff_t, $headers) -# AX_COMPILE_CHECK_SIZEOF(off_t, $headers) +# AC_PROG_CC +# AC_CHECK_HEADERS(stddef.h unistd.h) +# AC_TYPE_SIZE_T +# AC_CHECK_TYPE(ssize_t, int) +# +# headers='#ifdef HAVE_STDDEF_H +# #include <stddef.h> +# #endif +# #ifdef HAVE_UNISTD_H +# #include <unistd.h> +# #endif +# ' +# +# AX_COMPILE_CHECK_SIZEOF(char) +# AX_COMPILE_CHECK_SIZEOF(short) +# AX_COMPILE_CHECK_SIZEOF(int) +# AX_COMPILE_CHECK_SIZEOF(long) +# AX_COMPILE_CHECK_SIZEOF(unsigned char *) +# AX_COMPILE_CHECK_SIZEOF(void *) +# AX_COMPILE_CHECK_SIZEOF(size_t, $headers) +# AX_COMPILE_CHECK_SIZEOF(ssize_t, $headers) +# AX_COMPILE_CHECK_SIZEOF(ptrdiff_t, $headers) +# AX_COMPILE_CHECK_SIZEOF(off_t, $headers) # # LICENSE # diff --git a/m4/ax_compute_relative_paths.m4 b/m4/ax_compute_relative_paths.m4 index 0ef49c9..b0f5ee5 100644 --- a/m4/ax_compute_relative_paths.m4 +++ b/m4/ax_compute_relative_paths.m4 @@ -15,17 +15,17 @@ # # For instance, # -# first=/usr/local/bin -# second=/usr/local/share -# AX_COMPUTE_RELATIVE_PATHS([first:second:fs second:first:sf]) -# # $fs is set to ../share -# # $sf is set to ../bin +# first=/usr/local/bin +# second=/usr/local/share +# AX_COMPUTE_RELATIVE_PATHS([first:second:fs second:first:sf]) +# # $fs is set to ../share +# # $sf is set to ../bin # # $FROM and $TO are both eval'ed recursively and normalized, this means # that you can call this macro with autoconf's dirnames like `prefix' or # `datadir'. For example: # -# AX_COMPUTE_RELATIVE_PATHS([bindir:datadir:bin_to_data]) +# AX_COMPUTE_RELATIVE_PATHS([bindir:datadir:bin_to_data]) # # AX_COMPUTE_RELATIVE_PATHS should also works with DOS filenames. # diff --git a/m4/ax_compute_standard_relative_paths.m4 b/m4/ax_compute_standard_relative_paths.m4 index c49576b..95a924c 100644 --- a/m4/ax_compute_standard_relative_paths.m4 +++ b/m4/ax_compute_standard_relative_paths.m4 @@ -11,21 +11,21 @@ # Here is the standard hierarchy of paths, as defined by the GNU Coding # Standards: # -# prefix -# exec_prefix -# bindir -# libdir -# libexecdir -# sbindir -# datadir -# sysconfdir -# sharestatedir -# localstatedir -# infodir -# lispdir -# includedir -# oldincludedir -# mandir +# prefix +# exec_prefix +# bindir +# libdir +# libexecdir +# sbindir +# datadir +# sysconfdir +# sharestatedir +# localstatedir +# infodir +# lispdir +# includedir +# oldincludedir +# mandir # # This macro will setup a set of variables of the form # 'xxx_forward_relative_path' and 'xxx_backward_relative_path' where xxx diff --git a/m4/ax_config_feature.m4 b/m4/ax_config_feature.m4 index df939b0..ec93d75 100644 --- a/m4/ax_config_feature.m4 +++ b/m4/ax_config_feature.m4 @@ -18,22 +18,22 @@ # # A simple example: # -# AX_CONFIG_FEATURE_DEFAULT_ENABLED -# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], -# HAVE_XXXXX, [Define if you want XXXXX support]) +# AX_CONFIG_FEATURE_DEFAULT_ENABLED +# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], +# HAVE_XXXXX, [Define if you want XXXXX support]) # -# ... +# ... # -# AX_CONFIG_FEATURE_DEFAULT_DISABLED -# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], -# HAVE_YYYYY, [Define if you want YYYYY support], -# [enable_yyyyy="yes"], [enable_yyyyy="no"]) -# AM_CONDITIONAL(YYYYY, [test "$enable_yyyyy" = "yes"]) +# AX_CONFIG_FEATURE_DEFAULT_DISABLED +# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], +# HAVE_YYYYY, [Define if you want YYYYY support], +# [enable_yyyyy="yes"], [enable_yyyyy="no"]) +# AM_CONDITIONAL(YYYYY, [test "$enable_yyyyy" = "yes"]) # -# AX_CONFIG_FEATURE_DEFAULT_ENABLED -# AX_CONFIG_FEATURE(...) +# AX_CONFIG_FEATURE_DEFAULT_ENABLED +# AX_CONFIG_FEATURE(...) # -# ... +# ... # # If you have lot of features and you want a verbose dumping of each user # selection use AX_CONFIG_FEATURE_VERBOSE. Use AX_CONFIG_FEATURE_SILENT in @@ -45,15 +45,15 @@ # # Another simple example: # -# AS_IF([some_test_here],[AX_CONFIG_FEATURE_ENABLE(feature_xxxxx)],[]) +# AS_IF([some_test_here],[AX_CONFIG_FEATURE_ENABLE(feature_xxxxx)],[]) # -# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], -# HAVE_XXXXX, [Define if you want XXXXX support]) -# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], -# HAVE_YYYYY, [Define if you want YYYYY support], -# [enable_yyyyy="yes"], [enable_yyyyy="no"]) +# AX_CONFIG_FEATURE(feature_xxxxx, [turns on/off XXXXX support], +# HAVE_XXXXX, [Define if you want XXXXX support]) +# AX_CONFIG_FEATURE(feature_yyyyy, [turns on/off YYYYY support], +# HAVE_YYYYY, [Define if you want YYYYY support], +# [enable_yyyyy="yes"], [enable_yyyyy="no"]) # -# ... +# ... # # NOTE: AX_CONFIG_FEATURE_ENABLE() must be placed first of the relative # AX_CONFIG_FEATURE() macro ... diff --git a/m4/ax_configure_args.m4 b/m4/ax_configure_args.m4 index 8b202c8..ce3683c 100644 --- a/m4/ax_configure_args.m4 +++ b/m4/ax_configure_args.m4 @@ -22,10 +22,10 @@ # # Example: # -# AC_DEFUN([AX_ENABLE_SUBDIR],[dnl -# AC_REQUIRE([AX_CONFIGURE_ARGS])dnl -# eval $SHELL $ac_configure_args || exit $? -# ...]) +# AC_DEFUN([AX_ENABLE_SUBDIR],[dnl +# AC_REQUIRE([AX_CONFIGURE_ARGS])dnl +# eval $SHELL $ac_configure_args || exit $? +# ...]) # # LICENSE # diff --git a/m4/ax_create_stdint_h.m4 b/m4/ax_create_stdint_h.m4 index f2a94e1..60012af 100644 --- a/m4/ax_create_stdint_h.m4 +++ b/m4/ax_create_stdint_h.m4 @@ -31,7 +31,7 @@ # installable file mylib-int.h that all your other installable header may # include. So if you have a library package named "mylib", just use # -# AX_CREATE_STDINT_H(mylib-int.h) +# AX_CREATE_STDINT_H(mylib-int.h) # # in configure.ac and go to install that very header file in Makefile.am # along with the other headers (mylib.h) - and the mylib-specific headers diff --git a/m4/ax_cvs.m4 b/m4/ax_cvs.m4 index 59f7ac7..941071c 100644 --- a/m4/ax_cvs.m4 +++ b/m4/ax_cvs.m4 @@ -13,7 +13,7 @@ # Branching and releasing relies on you using the following version # format: # -# MAJOR.MINOR.POINT +# MAJOR.MINOR.POINT # # where MAJOR is the major version number, MINOR is the minor version # number and POINT is the point release number. diff --git a/m4/ax_define_dir.m4 b/m4/ax_define_dir.m4 index b7501e8..3727b56 100644 --- a/m4/ax_define_dir.m4 +++ b/m4/ax_define_dir.m4 @@ -16,7 +16,7 @@ # # Example: # -# AX_DEFINE_DIR([DATADIR], [datadir], [Where data are placed to.]) +# AX_DEFINE_DIR([DATADIR], [datadir], [Where data are placed to.]) # # LICENSE # diff --git a/m4/ax_define_integer_bits.m4 b/m4/ax_define_integer_bits.m4 index 02e9c42..5d53c05 100644 --- a/m4/ax_define_integer_bits.m4 +++ b/m4/ax_define_integer_bits.m4 @@ -17,23 +17,23 @@ # For example, the following ensures that uint64_t is defined as a 64-bit # datatype: # -# AX_DEFINE_INTEGER_BITS(uint64_t, unsigned long long, unsigned __int64, long) -# if test "$uint64_t" = no; then -# AC_MSG_ERROR([unable to continue without a 64-bit datatype]) -# fi +# AX_DEFINE_INTEGER_BITS(uint64_t, unsigned long long, unsigned __int64, long) +# if test "$uint64_t" = no; then +# AC_MSG_ERROR([unable to continue without a 64-bit datatype]) +# fi # # You should then put the following in your C code to ensure that all # datatypes defined by AX_DEFINE_INTEGER_BITS are visible to your program: # -# #include "config.h" +# #include "config.h" # -# #if HAVE_INTTYPES_H -# # include <inttypes.h> -# #else -# # if HAVE_STDINT_H -# # include <stdint.h> -# # endif -# #endif +# #if HAVE_INTTYPES_H +# # include <inttypes.h> +# #else +# # if HAVE_STDINT_H +# # include <stdint.h> +# # endif +# #endif # # LICENSE # diff --git a/m4/ax_define_sub_path.m4 b/m4/ax_define_sub_path.m4 index 9291cb9..461a878 100644 --- a/m4/ax_define_sub_path.m4 +++ b/m4/ax_define_sub_path.m4 @@ -22,25 +22,25 @@ # # Example (configure.ac): # -# AX_DEFINE_DIR([EPREFIX], [exec_prefix], [--exec-prefix or default]) -# AX_DEFINE_SUB_PATH([PATH_LIBDIR], [libdir], [--bindir subdir]) -# AC_DEFINE_UNQUOTED([PACKAGE],"$PACKAGE", [Name of package]) +# AX_DEFINE_DIR([EPREFIX], [exec_prefix], [--exec-prefix or default]) +# AX_DEFINE_SUB_PATH([PATH_LIBDIR], [libdir], [--bindir subdir]) +# AC_DEFINE_UNQUOTED([PACKAGE],"$PACKAGE", [Name of package]) # # Example (in C): # -# static const char _libdir[] = PATH_LIBDIR; /* configure default */ -# char* libdir; -# char* eprefix = getenv (PACKAGE "DIR"); -# if (! eprefix) eprefix = EPREFIX; /* default */ -# if (*_libdir != '.') libdir = strdup(_libdir); -# else { -# libdir = malloc(strlen(eprefix) + strlen(_libdir) + 2); -# strcpy(libdir, eprefix); -# strcat(libdir, PATH_DELIMITER_STRING); -# strcat(libdir, _libdir); -# } -# ... -# free (libdir); +# static const char _libdir[] = PATH_LIBDIR; /* configure default */ +# char* libdir; +# char* eprefix = getenv (PACKAGE "DIR"); +# if (! eprefix) eprefix = EPREFIX; /* default */ +# if (*_libdir != '.') libdir = strdup(_libdir); +# else { +# libdir = malloc(strlen(eprefix) + strlen(_libdir) + 2); +# strcpy(libdir, eprefix); +# strcat(libdir, PATH_DELIMITER_STRING); +# strcat(libdir, _libdir); +# } +# ... +# free (libdir); # # The AX_DEFINE_SUB_PATHS(varnames) macro looks for the given various # install-paths that largely depend on either ${prefix} or ${exec_prefix}. diff --git a/m4/ax_dist_rpm.m4 b/m4/ax_dist_rpm.m4 index 5bb862a..1e21065 100644 --- a/m4/ax_dist_rpm.m4 +++ b/m4/ax_dist_rpm.m4 @@ -15,39 +15,39 @@ # name and version respectively. The files and ChangeLog will be filled # in automatically. For instance: # -# Summary: Foobar -# Name: @PACKAGE@ -# Version: @VERSION@ -# Release: 0 -# License: GPL -# Group: Productivity/Networking -# Source0: http://somewhere/Foobar/%{name}-%{version}.tar.gz -# URL: http://somewhere -# BuildRoot: %{_tmppath}/%{name}-root -# Prefix: %{_prefix} +# Summary: Foobar +# Name: @PACKAGE@ +# Version: @VERSION@ +# Release: 0 +# License: GPL +# Group: Productivity/Networking +# Source0: http://somewhere/Foobar/%{name}-%{version}.tar.gz +# URL: http://somewhere +# BuildRoot: %{_tmppath}/%{name}-root +# Prefix: %{_prefix} # -# %description -# Foobar does something +# %description +# Foobar does something # -# %prep -# %setup +# %prep +# %setup # -# %build -# %configure -# make +# %build +# %configure +# make # -# %install -# %makeinstall +# %install +# %makeinstall # -# %clean -# rm -rf $RPM_BUILD_ROOT +# %clean +# rm -rf $RPM_BUILD_ROOT # -# %files -# %defattr(-,root,root) +# %files +# %defattr(-,root,root) # -# %doc AUTHORS BUGS COPYING INSTALL NEWS README +# %doc AUTHORS BUGS COPYING INSTALL NEWS README # -# %changelog +# %changelog # # Make sure ax_upload.am is added to aminclude.am and you have 'include # aminclude.am' in your toplevel Makefile.am diff --git a/m4/ax_extra_dist.m4 b/m4/ax_extra_dist.m4 index 310fd47..f1f0308 100644 --- a/m4/ax_extra_dist.m4 +++ b/m4/ax_extra_dist.m4 @@ -14,22 +14,22 @@ # your Makefile.am, where <TYPE> is the name of the dist and then add # <TYPE> to EXTRA_SRC_DISTS or EXTRA_BIN_DISTS. For example: # -# dist-foobar: -# <rules for making the foobar dist> +# dist-foobar: +# <rules for making the foobar dist> # -# EXTRA_BIN_DISTS += foobar +# EXTRA_BIN_DISTS += foobar # # You can then build all the src dist targets by running: # -# make dist-src +# make dist-src # # You can build all the binary dist targets by running: # -# make dist-bin +# make dist-bin # # and you can build both the src and dist targets by running: # -# make all-dist +# make all-dist # # LICENSE # diff --git a/m4/ax_func_accept_argtypes.m4 b/m4/ax_func_accept_argtypes.m4 index 2bdb633..ccfa8f4 100644 --- a/m4/ax_func_accept_argtypes.m4 +++ b/m4/ax_func_accept_argtypes.m4 @@ -12,9 +12,9 @@ # placed into the symbols ACCEPT_TYPE_ARG[123], consistent with the # following example: # -# #define ACCEPT_TYPE_ARG1 int -# #define ACCEPT_TYPE_ARG2 struct sockaddr * -# #define ACCEPT_TYPE_ARG3 socklen_t * +# #define ACCEPT_TYPE_ARG1 int +# #define ACCEPT_TYPE_ARG2 struct sockaddr * +# #define ACCEPT_TYPE_ARG3 socklen_t * # # This macro requires AC_CHECK_HEADERS to have already verified the # presence or absence of sys/types.h and sys/socket.h. diff --git a/m4/ax_jni_include_dir.m4 b/m4/ax_jni_include_dir.m4 index 4f1a882..ed7fd6a 100644 --- a/m4/ax_jni_include_dir.m4 +++ b/m4/ax_jni_include_dir.m4 @@ -17,12 +17,12 @@ # # Example usage follows: # -# AX_JNI_INCLUDE_DIR +# AX_JNI_INCLUDE_DIR # -# for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS -# do -# CPPFLAGS="$CPPFLAGS -I$JNI_INCLUDE_DIR" -# done +# for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS +# do +# CPPFLAGS="$CPPFLAGS -I$JNI_INCLUDE_DIR" +# done # # If you want to force a specific compiler: # diff --git a/m4/ax_lapack.m4 b/m4/ax_lapack.m4 index fb8a7b4..3f05677 100644 --- a/m4/ax_lapack.m4 +++ b/m4/ax_lapack.m4 @@ -14,7 +14,7 @@ # # To link with LAPACK, you should link with: # -# $LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS +# $LAPACK_LIBS $BLAS_LIBS $LIBS $FLIBS # # in that order. BLAS_LIBS is the output variable of the AX_BLAS macro, # called automatically. FLIBS is the output variable of the diff --git a/m4/ax_lib_oracle_oci.m4 b/m4/ax_lib_oracle_oci.m4 index 65fa183..9b922fb 100644 --- a/m4/ax_lib_oracle_oci.m4 +++ b/m4/ax_lib_oracle_oci.m4 @@ -16,12 +16,12 @@ # # 1) Single-option usage: # -# --with-oci -- path to ORACLE_HOME directory +# --with-oci -- path to ORACLE_HOME directory # # 2) Two-options usage (both options are required): # -# --with-oci-include -- path to directory with OCI headers -# --with-oci-lib -- path to directory with OCI libraries +# --with-oci-include -- path to directory with OCI headers +# --with-oci-lib -- path to directory with OCI libraries # # NOTE: These options described above do not take yes|no values. If 'yes' # value is passed, then WARNING message will be displayed, 'no' value, as diff --git a/m4/ax_llvm.m4 b/m4/ax_llvm.m4 index 019add9..6f8f081 100644 --- a/m4/ax_llvm.m4 +++ b/m4/ax_llvm.m4 @@ -11,7 +11,7 @@ # Test for the existance of llvm, and make sure that it can be linked with # the llvm-libs argument that is passed on to llvm-config i.e.: # -# llvm --libs <llvm-libs> +# llvm --libs <llvm-libs> # # llvm-config will also include any libraries that are depended apon. # diff --git a/m4/ax_mpi.m4 b/m4/ax_mpi.m4 index e636e79..5ba60c2 100644 --- a/m4/ax_mpi.m4 +++ b/m4/ax_mpi.m4 @@ -21,8 +21,8 @@ # # If you want to compile everything with MPI, you should set: # -# CC="MPICC" #OR# CXX="MPICXX" #OR# F77="MPIF77" #OR# FC="MPIFC" -# LIBS="$MPILIBS $LIBS" +# CC="MPICC" #OR# CXX="MPICXX" #OR# F77="MPIF77" #OR# FC="MPIFC" +# LIBS="$MPILIBS $LIBS" # # NOTE: The above assumes that you will use $CC (or whatever) for linking # as well as for compiling. (This is the default for automake and most diff --git a/m4/ax_numeric_namedlevel.m4 b/m4/ax_numeric_namedlevel.m4 index 7a311fa..75ca5f6 100644 --- a/m4/ax_numeric_namedlevel.m4 +++ b/m4/ax_numeric_namedlevel.m4 @@ -27,15 +27,15 @@ # # the mnemonic names are: # -# 9| insane |ultrasome|experimentalplus -# 8| ultra |ultra|experimental) -# 7| all |muchmore|somemanymore|manymoreplus -# 6| most |manymore|most) -# 5| strict |somemore|almost -# 4| more |more -# 3| extra |manyplus|plusmuch|somemany|plusmany -# 2| many |many|much|(yes) -# 1| some |some|plus +# 9| insane |ultrasome|experimentalplus +# 8| ultra |ultra|experimental) +# 7| all |muchmore|somemanymore|manymoreplus +# 6| most |manymore|most) +# 5| strict |somemore|almost +# 4| more |more +# 3| extra |manyplus|plusmuch|somemany|plusmany +# 2| many |many|much|(yes) +# 1| some |some|plus # # note that a level can be construcct of (some|plus) = bit-0, (many|much) # = bit-1, (more) = bit-2, (ultra|experimental) = bit-3 atleast in a @@ -43,9 +43,9 @@ # # Example usage: # -# AX_NUMERIC_NAMEDLEVEL(OPTLEVEL,with_optlevel,1,3) -# AC_DEFINE(OPTLEVEL) -# test "$GCC" = "yes" && CFLAGS="$CFLAGS -O$OPTLEVEL) +# AX_NUMERIC_NAMEDLEVEL(OPTLEVEL,with_optlevel,1,3) +# AC_DEFINE(OPTLEVEL) +# test "$GCC" = "yes" && CFLAGS="$CFLAGS -O$OPTLEVEL) # # LICENSE # diff --git a/m4/ax_openmp.m4 b/m4/ax_openmp.m4 index 0c7f0d7..5d2b6ee 100644 --- a/m4/ax_openmp.m4 +++ b/m4/ax_openmp.m4 @@ -21,9 +21,9 @@ # # If you want to compile everything with OpenMP, you should set: # -# CFLAGS="$CFLAGS $OPENMP_CFLAGS" -# #OR# CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS" -# #OR# FFLAGS="$FFLAGS $OPENMP_FFLAGS" +# CFLAGS="$CFLAGS $OPENMP_CFLAGS" +# #OR# CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS" +# #OR# FFLAGS="$FFLAGS $OPENMP_FFLAGS" # # (depending on the selected language). # diff --git a/m4/ax_path_bdb.m4 b/m4/ax_path_bdb.m4 index 0c67e9f..44b17ea 100644 --- a/m4/ax_path_bdb.m4 +++ b/m4/ax_path_bdb.m4 @@ -25,11 +25,11 @@ # # An example of it's use is: # -# AX_PATH_BDB([3],[ -# LIBS="$BDB_LIBS $LIBS" -# LDFLAGS="$BDB_LDFLAGS $LDFLAGS" -# CPPFLAGS="$CPPFLAGS $BDB_CPPFLAGS" -# ]) +# AX_PATH_BDB([3],[ +# LIBS="$BDB_LIBS $LIBS" +# LDFLAGS="$BDB_LDFLAGS $LDFLAGS" +# CPPFLAGS="$CPPFLAGS $BDB_CPPFLAGS" +# ]) # # which will locate the latest version of Berkeley DB on the system, and # ensure that it is version 3.0 or higher. diff --git a/m4/ax_path_generic.m4 b/m4/ax_path_generic.m4 index c56b7c2..dcb4006 100644 --- a/m4/ax_path_generic.m4 +++ b/m4/ax_path_generic.m4 @@ -24,25 +24,25 @@ # # Example: # -# AX_PATH_GENERIC(Foo, 1.0.0) +# AX_PATH_GENERIC(Foo, 1.0.0) # # would run `foo-config --version' and check that it is at least 1.0.0, if # successful the following variables would be defined and substituted: # -# FOO_CFLAGS to `foo-config --cflags` -# FOO_LIBS to `foo-config --libs` +# FOO_CFLAGS to `foo-config --cflags` +# FOO_LIBS to `foo-config --libs` # # Example: # -# AX_PATH_GENERIC([Bar],,,[ -# AC_MSG_ERROR([Cannot find Bar library]) -# ]) +# AX_PATH_GENERIC([Bar],,,[ +# AC_MSG_ERROR([Cannot find Bar library]) +# ]) # # would check for bar-config program, defining and substituting the # following variables: # -# BAR_CFLAGS to `bar-config --cflags` -# BAR_LIBS to `bar-config --libs` +# BAR_CFLAGS to `bar-config --cflags` +# BAR_LIBS to `bar-config --libs` # # This macro is a rearranged version of AC_PATH_GENERIC from Angus Lees. # diff --git a/m4/ax_pgsql_priv_root.m4 b/m4/ax_pgsql_priv_root.m4 index 1fdbbd6..3b66baa 100644 --- a/m4/ax_pgsql_priv_root.m4 +++ b/m4/ax_pgsql_priv_root.m4 @@ -16,35 +16,35 @@ # The variable $pgclient_root_call is set for later use in Makefiles, if # you'd like to make use of this, you must do # -# AC_SUBST(pgclient_root_call) +# AC_SUBST(pgclient_root_call) # # after having called AX_CHECK_PGSQL_PRIV_ROOT. You can then do something # like the following in your Makefile.am: # -# @pgclient_root_call@ -f file.sql +# @pgclient_root_call@ -f file.sql # # If you want the user to set the data, you should support something like # these configure options: # -# AC_ARG_WITH(pgsql-host, -# [ --with-pgsql-host=HOST server is running on HOST @<:@local socket@:>@], -# [pg_host=$withval], [pg_host=]) +# AC_ARG_WITH(pgsql-host, +# [ --with-pgsql-host=HOST server is running on HOST @<:@local socket@:>@], +# [pg_host=$withval], [pg_host=]) # -# AC_ARG_WITH(pgsql-db, -# [ --with-pgsql-db=DBNAME use database DBNAME @<:@test@:>@], -# [pg_db=$withval], [pg_db=test]) +# AC_ARG_WITH(pgsql-db, +# [ --with-pgsql-db=DBNAME use database DBNAME @<:@test@:>@], +# [pg_db=$withval], [pg_db=test]) # -# AC_ARG_WITH(pgsql-root-user, -# [ --with-pgsql-root-user=USER use user USER, must have root (all) privileges @<:@postgres@:>@], -# [pg_root_user=$withval], [pg_root_user=postgres]) +# AC_ARG_WITH(pgsql-root-user, +# [ --with-pgsql-root-user=USER use user USER, must have root (all) privileges @<:@postgres@:>@], +# [pg_root_user=$withval], [pg_root_user=postgres]) # -# AC_ARG_WITH(pgsql-password, -# [ --with-pgsql-password=PASSWORD use password PASSWORD @<:@none@:>@], -# [pg_password=$withval], [pg_password=""]) +# AC_ARG_WITH(pgsql-password, +# [ --with-pgsql-password=PASSWORD use password PASSWORD @<:@none@:>@], +# [pg_password=$withval], [pg_password=""]) # # You can then call the macro like this: # -# AX_CHECK_PGSQL_PRIV_ROOT([$pg_db], [$pg_root_user], [$pg_host], [$pg_password], [AC_MSG_ERROR([We need root privileges on database!])]) +# AX_CHECK_PGSQL_PRIV_ROOT([$pg_db], [$pg_root_user], [$pg_host], [$pg_password], [AC_MSG_ERROR([We need root privileges on database!])]) # # LICENSE # diff --git a/m4/ax_prefix_config_h.m4 b/m4/ax_prefix_config_h.m4 index be0ba48..161f0a5 100644 --- a/m4/ax_prefix_config_h.m4 +++ b/m4/ax_prefix_config_h.m4 @@ -68,10 +68,10 @@ # it by itself". You might want to clean up about these - consider an # extra mylib/conf.h that reads something like: # -# #include <mylib/_config.h> -# #ifndef _testpkg_const -# #define _testpkg_const const -# #endif +# #include <mylib/_config.h> +# #ifndef _testpkg_const +# #define _testpkg_const const +# #endif # # and then start using _testpkg_const in the header files. That is also a # good thing to differentiate whether some library-user has starting to diff --git a/m4/ax_prog_crontab.m4 b/m4/ax_prog_crontab.m4 index 3e27f52..6b3d670 100644 --- a/m4/ax_prog_crontab.m4 +++ b/m4/ax_prog_crontab.m4 @@ -14,7 +14,7 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# CRONTAB = which crontab +# CRONTAB = which crontab # # LICENSE # diff --git a/m4/ax_prog_httpd.m4 b/m4/ax_prog_httpd.m4 index 68c8742..8be428e 100644 --- a/m4/ax_prog_httpd.m4 +++ b/m4/ax_prog_httpd.m4 @@ -16,14 +16,14 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# HTTPD = which httpd -# HTTPD_ROOT = Apache's root directory, specified when compiled / run with -d option -# HTTPD_SERVER_ROOT = Directory for Apache's essential files, e.g. access logs / error logs / modules / scripts. -# HTTPD_SERVER_CONFIG_FILE = Full-path of the 'httpd.conf' file -# HTTPD_USER = Which user that httpd runs as -# HTTPD_GROUP = Which group that httpd runs as -# HTTPD_DOC_HOME = Document directory, taken as the first DocumentRoot path found in httpd.conf -# HTTPD_SCRIPT_HOME = CGI script directory, taken as the first ScriptAlias path found in httpd.conf +# HTTPD = which httpd +# HTTPD_ROOT = Apache's root directory, specified when compiled / run with -d option +# HTTPD_SERVER_ROOT = Directory for Apache's essential files, e.g. access logs / error logs / modules / scripts. +# HTTPD_SERVER_CONFIG_FILE = Full-path of the 'httpd.conf' file +# HTTPD_USER = Which user that httpd runs as +# HTTPD_GROUP = Which group that httpd runs as +# HTTPD_DOC_HOME = Document directory, taken as the first DocumentRoot path found in httpd.conf +# HTTPD_SCRIPT_HOME = CGI script directory, taken as the first ScriptAlias path found in httpd.conf # # LICENSE # diff --git a/m4/ax_prog_java.m4 b/m4/ax_prog_java.m4 index afa7757..5df29ea 100644 --- a/m4/ax_prog_java.m4 +++ b/m4/ax_prog_java.m4 @@ -57,18 +57,18 @@ # This is a sample configure.in Process this file with autoconf to produce # a configure script. # -# AC_INIT(UnTag.java) +# AC_INIT(UnTag.java) # -# dnl Checks for programs. -# AC_CHECK_CLASSPATH -# AX_PROG_JAVAC -# AX_PROG_JAVA +# dnl Checks for programs. +# AC_CHECK_CLASSPATH +# AX_PROG_JAVAC +# AX_PROG_JAVA # -# dnl Checks for classes -# AX_CHECK_RQRD_CLASS(org.xml.sax.Parser) -# AX_CHECK_RQRD_CLASS(com.jclark.xml.sax.Driver) +# dnl Checks for classes +# AX_CHECK_RQRD_CLASS(org.xml.sax.Parser) +# AX_CHECK_RQRD_CLASS(com.jclark.xml.sax.Driver) # -# AC_OUTPUT(Makefile) +# AC_OUTPUT(Makefile) # # LICENSE # diff --git a/m4/ax_prog_mysql.m4 b/m4/ax_prog_mysql.m4 index bdbc4d0..d627c9b 100644 --- a/m4/ax_prog_mysql.m4 +++ b/m4/ax_prog_mysql.m4 @@ -19,7 +19,7 @@ # Besides checking mysql, this macro also set these environment variables # upon completion: # -# MYSQL = which mysql +# MYSQL = which mysql # # LICENSE # diff --git a/m4/ax_prog_mysqladmin.m4 b/m4/ax_prog_mysqladmin.m4 index c62ff4a..fa1c867 100644 --- a/m4/ax_prog_mysqladmin.m4 +++ b/m4/ax_prog_mysqladmin.m4 @@ -17,8 +17,8 @@ # Besides checking mysql, this macro also set these environment variables # upon completion: # -# MYSQLADMIN = which mysqladmin -# MYSQL_DATADIR = directory containing mysql database +# MYSQLADMIN = which mysqladmin +# MYSQL_DATADIR = directory containing mysql database # # LICENSE # diff --git a/m4/ax_prog_mysqld.m4 b/m4/ax_prog_mysqld.m4 index 5c2a518..b2269fa 100644 --- a/m4/ax_prog_mysqld.m4 +++ b/m4/ax_prog_mysqld.m4 @@ -14,7 +14,7 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# MYSQLD = which mysqld +# MYSQLD = which mysqld # # LICENSE # diff --git a/m4/ax_prog_mysqlimport.m4 b/m4/ax_prog_mysqlimport.m4 index 6074e3b..e0330bb 100644 --- a/m4/ax_prog_mysqlimport.m4 +++ b/m4/ax_prog_mysqlimport.m4 @@ -14,7 +14,7 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# MYSQLIMPORT = which mysqlimport +# MYSQLIMPORT = which mysqlimport # # LICENSE # diff --git a/m4/ax_prog_mysqlshow.m4 b/m4/ax_prog_mysqlshow.m4 index 03e439d..bea8eb4 100644 --- a/m4/ax_prog_mysqlshow.m4 +++ b/m4/ax_prog_mysqlshow.m4 @@ -18,7 +18,7 @@ # Besides checking mysql, this macro also set these environment variables # upon completion: # -# MYSQLSHOW = which mysqlshow +# MYSQLSHOW = which mysqlshow # # LICENSE # diff --git a/m4/ax_prog_pgclient.m4 b/m4/ax_prog_pgclient.m4 index b75be97..06a9db6 100644 --- a/m4/ax_prog_pgclient.m4 +++ b/m4/ax_prog_pgclient.m4 @@ -15,7 +15,7 @@ # program, you can do something like the following to stop configure with # an error if pgclient wasn't found: # -# if test "x$pgclient" = "x0"; then AC_MSG_ERROR([We need that to setup the database!]); fi +# if test "x$pgclient" = "x0"; then AC_MSG_ERROR([We need that to setup the database!]); fi # # pgclient can be found at http://pgclient.freesources.org # diff --git a/m4/ax_prog_scp.m4 b/m4/ax_prog_scp.m4 index 21c4f08..972d4d2 100644 --- a/m4/ax_prog_scp.m4 +++ b/m4/ax_prog_scp.m4 @@ -14,7 +14,7 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# SCP = which scp +# SCP = which scp # # LICENSE # diff --git a/m4/ax_prog_ssh.m4 b/m4/ax_prog_ssh.m4 index 61de893..103c341 100644 --- a/m4/ax_prog_ssh.m4 +++ b/m4/ax_prog_ssh.m4 @@ -14,7 +14,7 @@ # Besides checking existence, this macro also set these environment # variables upon completion: # -# SSH = which ssh +# SSH = which ssh # # LICENSE # diff --git a/m4/ax_prototype.m4 b/m4/ax_prototype.m4 index e8071b7..01f7d8f 100644 --- a/m4/ax_prototype.m4 +++ b/m4/ax_prototype.m4 @@ -72,12 +72,12 @@ # # 4) in the code # -# ... -# GETPEERNAME_ARG2 name; -# GETPEERNAME_ARG3 namelen; -# ... -# ret = getpeername(socket, &name, &namelen); -# ... +# ... +# GETPEERNAME_ARG2 name; +# GETPEERNAME_ARG3 namelen; +# ... +# ret = getpeername(socket, &name, &namelen); +# ... # # Implementation notes: generating all possible permutations of the # arguments is not easily done with the usual mixture of shell and m4, diff --git a/m4/ax_pthread.m4 b/m4/ax_pthread.m4 index 83d8d1b..8a1d24c 100644 --- a/m4/ax_pthread.m4 +++ b/m4/ax_pthread.m4 @@ -25,9 +25,9 @@ # If you are only building threads programs, you may wish to use these # variables in your default LIBS, CFLAGS, and CC: # -# LIBS="$PTHREAD_LIBS $LIBS" -# CFLAGS="$CFLAGS $PTHREAD_CFLAGS" -# CC="$PTHREAD_CC" +# LIBS="$PTHREAD_LIBS $LIBS" +# CFLAGS="$CFLAGS $PTHREAD_CFLAGS" +# CC="$PTHREAD_CC" # # In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute constant # has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to that name diff --git a/m4/ax_require_one_func.m4 b/m4/ax_require_one_func.m4 index bbbb4d2..dbdc7ed 100644 --- a/m4/ax_require_one_func.m4 +++ b/m4/ax_require_one_func.m4 @@ -15,8 +15,8 @@ # # Here's an example: # -# AX_REQUIRE_ONE_FUNC([posix_memalign memalign valloc], , -# [AC_MSG_ERROR([unable to allocate page-aligned memory])]) +# AX_REQUIRE_ONE_FUNC([posix_memalign memalign valloc], , +# [AC_MSG_ERROR([unable to allocate page-aligned memory])]) # # LICENSE # diff --git a/m4/ax_string_strcasecmp.m4 b/m4/ax_string_strcasecmp.m4 index 8430afc..076e3c5 100644 --- a/m4/ax_string_strcasecmp.m4 +++ b/m4/ax_string_strcasecmp.m4 @@ -13,10 +13,10 @@ # Use this macro in conjunction with AX_STRINGS_STRCASECMP in your # configure.in like so: # -# AX_STRING_STRCASECMP -# if test x"$ac_cv_string_strcasecmp" = "xno" ; then -# AX_STRINGS_STRCASECMP -# fi +# AX_STRING_STRCASECMP +# if test x"$ac_cv_string_strcasecmp" = "xno" ; then +# AX_STRINGS_STRCASECMP +# fi # # This will cause either HAVE_STRING_STRCASECMP or HAVE_STRINGS_STRCASECMP # to be defined in config.h, which will tell your code what header to diff --git a/m4/ax_sys_perlsharpbang.m4 b/m4/ax_sys_perlsharpbang.m4 index f446630..f1fc86e 100644 --- a/m4/ax_sys_perlsharpbang.m4 +++ b/m4/ax_sys_perlsharpbang.m4 @@ -18,9 +18,9 @@ # the final 'configure' script, in this context) by making the option # argument like: # -# --with-perl-shebang='#! /my/funky/perlpath' # OR -# --with-perl-shebang='/my/funky/perlpath' # we just throw away the #! anyway -# # bec it must be absent in Makefile +# --with-perl-shebang='#! /my/funky/perlpath' # OR +# --with-perl-shebang='/my/funky/perlpath' # we just throw away the #! anyway +# # bec it must be absent in Makefile # # Rationale: The are various ways of starting an interpreter on different # *nix-like systems. Many use the simple diff --git a/m4/ax_upload.m4 b/m4/ax_upload.m4 index f1449a2..3612f55 100644 --- a/m4/ax_upload.m4 +++ b/m4/ax_upload.m4 @@ -11,27 +11,27 @@ # Adds support for uploading dist files. %%s in the command will be # substituted with the name of the file. e.g: # -# AX_UPLOAD([ncftpput -v upload.sourceforge.net /incoming %%s]) +# AX_UPLOAD([ncftpput -v upload.sourceforge.net /incoming %%s]) # # To add upload support for other custom dists add upload-<TYPE> to # UPLOAD_BIN or UPLOAD_SRC, where <TYPE> is the type of dist that is being # uploaded and add a mapping from <TYPE> to the dist file name in the # format '{<TYPE>=><FILENAME>}' to UPLOAD_TARGETS. For example: # -# UPLOAD_BIN += upload-foobar -# UPLOAD_TARGETS += {foobar=>@PACKAGE@-@VERSION@.fb} +# UPLOAD_BIN += upload-foobar +# UPLOAD_TARGETS += {foobar=>@PACKAGE@-@VERSION@.fb} # # You can then upload of the src distribution files by running: # -# make upload-src +# make upload-src # # all the binaru distribution files by running: # -# make upload-bin +# make upload-bin # # or both by running: # -# make upload +# make upload # # LICENSE # diff --git a/m4/ax_with_guile.m4 b/m4/ax_with_guile.m4 index 2fc398d..61a93d4 100644 --- a/m4/ax_with_guile.m4 +++ b/m4/ax_with_guile.m4 @@ -17,7 +17,7 @@ # # A typical use could be the following one: # -# AX_WITH_GUILE +# AX_WITH_GUILE # # LICENSE # diff --git a/m4/ax_with_perl.m4 b/m4/ax_with_perl.m4 index 4187153..3ca11b5 100644 --- a/m4/ax_with_perl.m4 +++ b/m4/ax_with_perl.m4 @@ -17,7 +17,7 @@ # # A typical use could be the following one: # -# AX_WITH_PERL +# AX_WITH_PERL # # LICENSE # diff --git a/m4/ax_with_prog.m4 b/m4/ax_with_prog.m4 index c4a91bd..7f57009 100644 --- a/m4/ax_with_prog.m4 +++ b/m4/ax_with_prog.m4 @@ -17,7 +17,7 @@ # # A typical example could be the following one: # -# AX_WITH_PROG(PERL,perl) +# AX_WITH_PROG(PERL,perl) # # NOTE: This macro is based upon the original AX_WITH_PYTHON macro from # Dustin J. Mitchell <dustin@cs.uchicago.edu>. diff --git a/m4/ax_with_python.m4 b/m4/ax_with_python.m4 index e109928..cf4e4e0 100644 --- a/m4/ax_with_python.m4 +++ b/m4/ax_with_python.m4 @@ -17,7 +17,7 @@ # # A typical use could be the following one: # -# AX_WITH_PYTHON +# AX_WITH_PYTHON # # LICENSE # diff --git a/m4/ax_with_ruby.m4 b/m4/ax_with_ruby.m4 index 1a0a80c..d74b04d 100644 --- a/m4/ax_with_ruby.m4 +++ b/m4/ax_with_ruby.m4 @@ -17,7 +17,7 @@ # # A typical use could be the following one: # -# AX_WITH_RUBY +# AX_WITH_RUBY # # LICENSE # |