-
Notifications
You must be signed in to change notification settings - Fork 15
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
47 changed files
with
9,395 additions
and
1,424 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 |
---|---|---|
|
@@ -22,3 +22,7 @@ compile | |
src/adplay | ||
src/config.h* | ||
src/.libs/ | ||
gnulib/*.a | ||
gnulib/stddef.h | ||
gnulib/sys/ | ||
gnulib/unistd.h |
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,5 +1,7 @@ | ||
SUBDIRS = src doc | ||
SUBDIRS = gnulib src doc | ||
|
||
EXTRA_DIST = adplay.spec adplay.qpg | ||
EXTRA_DIST = adplay.spec adplay.qpg m4/gnulib/gnulib-cache.m4 | ||
|
||
AUTOMAKE_OPTIONS = dist-bzip2 | ||
|
||
ACLOCAL_AMFLAGS="-Im4" "-Im4/gnulib" |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
gnulib is a tool and library that can provide implementation of functionality not available on all operating systems and libc implementations. | ||
|
||
Adplug currently uses gnulib to provide getopt_long(). | ||
|
||
To refresh to the latest version, do the following steps. | ||
|
||
* Remove the old instance | ||
* clone the gnulib repository outside of the Adplug source tree (In this example it is done in the parent directory) | ||
* Reimport gnulib | ||
|
||
rm -Rf m4/gnulib gnulib | ||
pushd . | ||
cd .. | ||
git clone https://git.savannah.gnu.org/git/gnulib.git | ||
popd | ||
../gnulib/gnulib-tool --m4-base m4/gnulib/ --source-base gnulib --no-vc-files --import getopt-gnu |
Oops, something went wrong.