Here is the problem: find $x_k$'s ($x_k\in R$) such that
$\max_{i} \{|c_i+\sum_k x_k d_{ki}| \}=\gamma$,
where $c_i$ and $d_{ki}$ are constant numbers in $R$.
I'm looking for the set of $x_k$ that satisfies the above condition.
For example
$\max\{|2-3x_1+x_2|,|1+2x_1+x_2|\}=1$,
Edited: to make the example more clear.
Consider this one
$\max\{|2-3x_1+x_2|,|1+2x_1+x_2|, |1-x_1-x_2|\}=1$,
That is, the number of equations is not equal to the number of variables.
EDIT: The answer below gives one and all solutions for the problem of finding a $x_k\in\mathbb{R}$ such that
$\max_i\{\lvert c_i+\sum_k x_k d_{ki}\rvert\}=\gamma$
where $c_i$ and $d_{ki}$ are constant numbers in $\mathbb{R}$.
The solution for the problem of finding all the possibles $x_k$ that satisfies the equation above is given after the approach that finds one solution.
For one solution:
I've found the following solution method, verify if it fits your requirements. I focused on the solution of the example but it might work for any problem.
Note that any solution for you problem lies on the border of the following region
\begin{gather} -1 \leq 2 - 3x_1 + x_2 \leq 1\\ -1 \leq 1 +2x_1 +2x_2 \leq 1 \end{gather}
Therefore solving the optimization problem \begin{align} \max\quad &c^Tx\\ \textrm{s.t.:}\quad&-1 \leq 2 - 3x_1 + x_2 \leq 1\\ &-1 \leq 1 +2x_1 +2x_2 \leq 1 \end{align} where $c$ is a nonzero vector, will result in a solution that satisfies your conditions.
The feasible region is shown in the following plot
For all solutions:
For all solutions you can do a similar approach, create a polyhedron given by the convex relaxation of the problem. The equations are given by \begin{align} -\gamma \leq c_i+\sum_k x_k d_{ki}\leq \gamma \end{align} for all $i$.
Then use a vertex enumeration algorithm to obtain all the vertex of the polyhedron. Suggested links
You can find more over internet over the keyword "Vertex enumeration problem".