-
Notifications
You must be signed in to change notification settings - Fork 6
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
4 changed files
with
89 additions
and
34 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
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,7 @@ | ||
#!/bin/sh | ||
# | ||
# Copyright (C) 2020 Red Hat, Inc. All rights reserved. | ||
# | ||
|
||
# Run this to generate all the initial makefiles, etc. | ||
autoreconf -i -v && echo Now run ./configure and make |
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,44 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.63]) | ||
AC_INIT([pcs-web-ui], | ||
[0.1.19], | ||
[[email protected]]) | ||
|
||
# dist-bzip2 dist-xz - which archivers try to use for distribution archive | ||
# -Wno-portability - disables some warnings about code portability | ||
# tar-pax - use tar with pax during creating archive to ensure keep permissions | ||
AM_INIT_AUTOMAKE([dist-bzip2 dist-xz -Wno-portability tar-pax]) | ||
|
||
|
||
# Checks for programs. | ||
|
||
# check stolen from gnulib/m4/gnu-make.m4 | ||
if ! ${MAKE-make} --version /cannot/make/this >/dev/null 2>&1; then | ||
AC_MSG_ERROR([you don't seem to have GNU make; it is required]) | ||
fi | ||
AC_PROG_INSTALL | ||
AC_PROG_GREP | ||
AC_PROG_SED | ||
AC_PROG_MAKE_SET | ||
AC_PROG_MKDIR_P | ||
|
||
# Checks for libraries. | ||
|
||
# Checks for header files. | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
|
||
# Checks for library functions. | ||
|
||
|
||
# this will catch both ID and ID_LIKE from os-release | ||
|
||
PKG_CHECK_VAR([PCSD_WEBUI_DIR], [pcs], [webui_dir]) | ||
AC_SUBST([PCSD_WEBUI_DIR]) | ||
|
||
|
||
AC_CONFIG_FILES([Makefile | ||
]) | ||
AC_OUTPUT |