mirror of
https://github.com/dustinkirkland/byobu.git
synced 2024-11-09 01:30:08 -08:00
e2251f6a91
- modernize autoconf, add .bzrignore - my intent is to add autogen.sh as next step as seems you currently produce release tarballs manually, so it contains random unneeded crap like autom4te.cache
66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.61])
|
|
AC_INIT([byobu], [5.121], [http://byobu.org])
|
|
AC_CONFIG_SRCDIR([usr/bin/byobu.in])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
AC_PROG_LN_S
|
|
|
|
# Checks for programs.
|
|
|
|
# Checks for libraries.
|
|
|
|
# Checks for header files.
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_OUTPUT(Makefile \
|
|
etc/byobu/Makefile \
|
|
etc/profile.d/Makefile \
|
|
etc/profile.d/Z97-byobu.sh \
|
|
usr/bin/byobu \
|
|
usr/bin/byobu-config \
|
|
usr/bin/byobu-ctrl-a \
|
|
usr/bin/byobu-disable \
|
|
usr/bin/byobu-disable-prompt \
|
|
usr/bin/byobu-enable \
|
|
usr/bin/byobu-enable-prompt \
|
|
usr/bin/byobu-export \
|
|
usr/bin/byobu-janitor \
|
|
usr/bin/byobu-launch \
|
|
usr/bin/byobu-launcher \
|
|
usr/bin/byobu-launcher-install \
|
|
usr/bin/byobu-launcher-uninstall \
|
|
usr/bin/byobu-layout \
|
|
usr/bin/byobu-prompt \
|
|
usr/bin/byobu-quiet \
|
|
usr/bin/byobu-reconnect-sockets \
|
|
usr/bin/byobu-select-backend \
|
|
usr/bin/byobu-select-profile \
|
|
usr/bin/byobu-select-session \
|
|
usr/bin/byobu-shell \
|
|
usr/bin/byobu-silent \
|
|
usr/bin/byobu-status \
|
|
usr/bin/byobu-status-detail \
|
|
usr/bin/byobu-ugraph \
|
|
usr/bin/byobu-ulevel \
|
|
usr/lib/byobu/include/config.py \
|
|
usr/lib/byobu/include/dirs \
|
|
usr/lib/byobu/include/toggle-utf8 \
|
|
usr/share/byobu/tests/byobu-time-notifications \
|
|
usr/share/byobu/desktop/Makefile \
|
|
usr/share/byobu/keybindings/Makefile \
|
|
usr/share/byobu/pixmaps/Makefile \
|
|
usr/share/byobu/profiles/Makefile \
|
|
usr/share/byobu/status/Makefile \
|
|
usr/share/byobu/tests/Makefile \
|
|
usr/share/byobu/windows/Makefile \
|
|
usr/share/dbus-1/services/Makefile \
|
|
usr/share/doc/byobu/Makefile \
|
|
usr/lib/byobu/Makefile \
|
|
usr/lib/byobu/include/Makefile \
|
|
usr/share/man/man1/Makefile usr/bin/Makefile)
|