diff options
| author | Michael Forney <mforney@mforney.org> | 2016-12-11 16:04:20 -0800 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2016-12-13 23:10:30 -0800 |
| commit | 293f5a93b77d92fd65db7f3d0df654f102e46cfb (patch) | |
| tree | 6ecd1170e3dd793862dd852814dc1b4cd5e44260 /pkg/alsa-utils/aconfig.h | |
| parent | 9a506a6834df01a26795cea222b410f206efa9fa (diff) | |
Move to flat package hierarchy
Note to self: never try to move submodules again
To migrate your existing submodules (more or less):
set -x
set -e
mkdir .git/modules/pkg
for old in */*/src ; do
new="pkg/${old#*/}"
if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
continue
fi
git -C ".git/modules/$old" config core.worktree "../../../../../$new"
rmdir "$new"
mv "$old" "$new"
sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
mv "$new/.git.tmp" "$new/.git"
mkdir ".git/modules/${new%/src}"
mv ".git/modules/$old" ".git/modules/$new"
rm "${old%/src}"/*.ninja
mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
rmdir "${old%/src}" || true
done
sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
mv .git/config.tmp .git/config
Diffstat (limited to 'pkg/alsa-utils/aconfig.h')
| -rw-r--r-- | pkg/alsa-utils/aconfig.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pkg/alsa-utils/aconfig.h b/pkg/alsa-utils/aconfig.h new file mode 100644 index 00000000..2d82c61e --- /dev/null +++ b/pkg/alsa-utils/aconfig.h @@ -0,0 +1,48 @@ +#include <config-posix.h> + +#define DATADIR "/share/alsa" +/* #undef ENABLE_NLS */ +/* #undef ENABLE_NLS_IN_CURSES */ +#define HAVE_ALSA_MIXER_H 1 +#define HAVE_ALSA_PCM_H 1 +#define HAVE_ALSA_RAWMIDI_H 1 +#define HAVE_ALSA_SEQ_H 1 +/* #undef HAVE_ALSA_TOPOLOGY_H */ +#define HAVE_ALSA_USE_CASE_H 1 +/* #undef HAVE_CFLOCALECOPYCURRENT */ +/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */ +/* #undef HAVE_CURSES_ESCDELAY */ +/* #undef HAVE_DCGETTEXT */ +/* #undef HAVE_FORM_H */ +/* #undef HAVE_GETTEXT */ +#define HAVE_LIBASOUND 1 +/* #undef HAVE_LIBFFTW3F */ +#define HAVE_LIBM 1 +#define HAVE_LIBPTHREAD 1 +#define HAVE_LIBRT 1 +/* #undef HAVE_LIBTINYALSA */ +/* #undef HAVE_MEMORY_H */ +/* #undef HAVE_MENU_H */ +/* #undef HAVE_PANEL_H */ +/* #undef HAVE_SAMPLERATE_H */ +/* #undef HAVE_SEQ_CLIENT_INFO_GET_CARD */ +/* #undef HAVE_SEQ_CLIENT_INFO_GET_PID */ +#define PACKAGE "alsa-utils" +#define PACKAGE_BUGREPORT "" +#define PACKAGE_NAME "alsa-utils" +#define PACKAGE_STRING "alsa-utils 1.1.2" +#define PACKAGE_TARNAME "alsa-utils" +#define PACKAGE_URL "" +#define PACKAGE_VERSION "1.1.2" +#define SOUNDSDIR "/share/sounds/alsa" +#define TIME_WITH_SYS_TIME 1 +#define VERSION "1.1.2" +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif +/* #undef _FILE_OFFSET_BITS */ +/* #undef _LARGE_FILES */ +/* #undef const */ +#ifndef __cplusplus +/* #undef inline */ +#endif |
