diff options
author | Maarten Bosmans <mkbosmans@gmail.com> | 2011-06-29 15:16:09 +0200 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2011-06-30 11:54:03 +0100 |
commit | 3722dbbcb3bbe889ca9e5ae061aa01f2e9cb29a0 (patch) | |
tree | 57a2b8eef03d7435dd9eb529724f566d946054f2 /configure.ac | |
parent | e42bc02dc6a521e663f1f0511958ee841618bcc7 (diff) |
build-sys: Use configure AC_OUTPUT to process config files
Don't use sed to replace @variable@ in file.in.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ab88bb74..06cce8f0 100644 --- a/configure.ac +++ b/configure.ac @@ -1216,8 +1216,29 @@ doxygen/Makefile doxygen/doxygen.conf src/pulse/version.h po/Makefile.in +man/pulseaudio.1.xml +man/esdcompat.1.xml +man/pax11publish.1.xml +man/paplay.1.xml +man/pacat.1.xml +man/pacmd.1.xml +man/pactl.1.xml +man/pasuspender.1.xml +man/padsp.1.xml +man/pulse-daemon.conf.5.xml +man/pulse-client.conf.5.xml +man/default.pa.5.xml ]) +AC_CONFIG_FILES([src/esdcompat:src/daemon/esdcompat.in], [chmod +x src/esdcompat]) +AC_CONFIG_FILES([src/start-pulseaudio-x11:src/daemon/start-pulseaudio-x11.in], [chmod +x src/start-pulseaudio-x11]) +AC_CONFIG_FILES([src/start-pulseaudio-kde:src/daemon/start-pulseaudio-kde.in], [chmod +x src/start-pulseaudio-kde]) +AC_CONFIG_FILES([src/client.conf:src/pulse/client.conf.in]) +AC_CONFIG_FILES([src/daemon.conf:src/daemon/daemon.conf.in]) +AS_IF([test "x$os_is_win32" = "x1"], [config_source_ext=win32], [config_source_ext=in]) +AC_CONFIG_FILES([src/default.pa:src/daemon/default.pa.$config_source_ext]) +AC_CONFIG_FILES([src/system.pa:src/daemon/system.pa.$config_source_ext]) + AC_OUTPUT # ========================================================================== |